home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / lisp / eulisp / mpfeel.lha / MPFeel / Modules / user.em < prev    next >
Text File  |  1992-10-06  |  722b  |  27 lines

  1. ;; Eulisp Module
  2. ;; Author: pab
  3. ;; File: user.em
  4. ;; Date: Wed May  6 18:14:30 1992
  5. ;;
  6. ;; Project:  Feel interpreted module 
  7. ;; Description: A minimal module
  8. ;;
  9.  
  10. ;; defmodule, then the name of the module (must be the same as the file)
  11. (defmodule user  
  12.   ;; what modules to import
  13.   ;; standard is most useful things
  14.   (standard
  15.    describe ;; look at objects...
  16.    )
  17.   ;; The syntax section. This being lisp, there ain't any
  18.   ;; Actually, it should contain the macro environment for this module,
  19.   ;; but no-one knows what it should look like. Small and furry would be
  20.   ;; good.
  21.   () 
  22.     
  23.   ;; Random text to keep the entertainment factor high.
  24.   (format t "Welcome... ~a. Enjoy...~%" (getenv "USER"))
  25.   ;; end module
  26.   )
  27.